home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 526-550 / disk_539 / simplerexx / makefile < prev    next >
Makefile  |  1992-05-06  |  464b  |  24 lines

  1. #
  2. # MakeFile for SimpleRexx and SimpleRexxExample
  3. #
  4.  
  5. CFLAGS= -b1 -cfist -d0 -ms0 -rr1 -v -w
  6.  
  7. HEAD=    SimpleRexx.h
  8.  
  9. CODE=    SimpleRexx.c SimpleRexxExample.c
  10.  
  11. OBJS=    SimpleRexx.o SimpleRexxExample.o
  12.  
  13. LIBS=    LIB:lcsr.lib rexxvars.o LIB:amiga.lib
  14.  
  15. .c.o:
  16.     @LC $(CFLAGS) $*
  17.  
  18. SimpleRexxExample: $(OBJS) $(LIBS)
  19.     BLink FROM LIB:c.o $(OBJS) TO SimpleRexxExample LIB $(LIBS) SD SC ND
  20.  
  21. SimpleRexx.o: SimpleRexx.c SimpleRexx.h
  22.  
  23. SimpleRexxExample.o: SimpleRexxExample.c SimpleRexx.h
  24.